/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');

/* Color Variables */
:root {
    --primary-color: #ffebaf; 
    --secondary-color: #4c9db0;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: 
        linear-gradient(135deg, rgba(255, 235, 175, 0.7) 0%, rgba(76, 157, 176, 0.7) 100%),
        url('watercolour-brush-photo-effect.png');
    background-attachment: fixed;
    background-size: 1550px 800px;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding-top: -400px;
}


/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 50px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#navbar.scrolled {
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 2px;
    color: #000000;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -120px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 15px 0;
    margin: 0;
    margin-top: 8px;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.branding-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 50px 100px;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 96px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #000000, #2d2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFloat 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Branding Services Section */
.branding-services {
    min-height: 100vh;
    padding: 100px 50px;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 50px 0;
}

/* Service Boxes */
.service-box {
    background: rgba(255, 245, 250, 0.70);
    padding: 50px 40px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    max-width: 450px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.service-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-box:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Zigzag Positioning */
.box-1 {
    margin-left: 10%;
    margin-bottom: 0px;
    animation-delay: 0.1s;
}

.box-2 {
    margin-left: auto;
    margin-right: 10%;
    margin-bottom: 0px;
    animation-delay: 0.2s;
}

.box-3 {
    margin-left: 10%;
    margin-bottom: 0px;
    animation-delay: 0.3s;
}

.box-4 {
    margin-left: auto;
    margin-right: 10%;
    margin-bottom: 0px;
    animation-delay: 0.4s;
}

.box-5 {
    margin-left: 10%;
    margin-bottom: 0px;
    animation-delay: 0.5s;
}

.box-6 {
    margin-left: auto;
    margin-right: 10%;
    margin-bottom: 0px;
    animation-delay: 0.6s;
}

.box-7 {
    margin-left: 10%;
    animation-delay: 0.7s;
}

/* Box Content */
.box-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-box:hover .box-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.service-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.service-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

.box-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 72px;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.service-box:hover .box-number {
    color: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 120px 50px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 56px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 24px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-title {
        font-size: 72px;
    }
    
    .service-box {
        max-width: 400px;
    }
    
    .box-1, .box-3, .box-5, .box-7 {
        margin-left: 5%;
    }
    
    .box-2, .box-4, .box-6 {
        margin-right: 5%;
    }
}

@media (max-width: 768px) {
    #navbar {
        padding: 20px 30px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .nav-menu {
        display: none; /* You'll need to add hamburger menu */
    }
    
    .branding-hero {
        padding: 120px 30px 80px;
    }
    
    .page-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .branding-services {
        padding: 60px 30px;
    }
    
    .service-box {
        max-width: 100%;
        margin: 0 auto 100px !important;
        padding: 40px 30px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 36px;
    }
    
    .service-box h3 {
        font-size: 24px;
    }
    
    .box-icon {
        font-size: 48px;
    }
    
    .box-number {
        font-size: 48px;
        top: 15px;
        right: 20px;
    }
}